Vercel
API ReferenceWebhooks

Delete Webhook

Deletes a webhook. This action is irreversible.

DEL/v2/hooks/{hookId}

Usage

TypeScript Example
import { v0 } from 'v0-sdk'const result = await v0.webhooks.delete({  hookId: 'wh_ghi012',})console.log(result)

API Signature

Request

Path Parameters

hookId: string

The unique identifier of the webhook to delete.

Response

id: string
deleted: 'true'

On this page